home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 20 / Cream of the Crop 20 (Terry Blount) (1996).iso / bbs / cddk9606.zip / HEADERS.ARJ / ERRATA.INT < prev    next >
Text File  |  1996-06-14  |  1KB  |  36 lines

  1.  
  2. { ───────────────────────────────────────────────────────────────────────── }
  3. {  ERRATA: Descriptive run-time error handling                              }
  4. {  Copyright 1996 David Pinch ∙ All Rights Reserved Worldwide               }
  5. { ───────────────────────────────────────────────────────────────────────── }
  6.  
  7. { This unit checks the contents of the ExitAddr pointer upon termination of }
  8. { the program.  A non-NIL value indicates a run-time error -- a descriptive }
  9. { message will be displayed if this happens.                                }
  10.  
  11. UNIT Errata;
  12.  
  13. {$B-} { . . . . . . . . . . . . . . . . . . . . Shortcut boolean evaluation }
  14. {$F+} { . . . . . . . . . . . . . . . . . . . .  Force far calls for safety }
  15. {$I-} { . . . . . . . . . . . . . . . . . . . Disable input/output checking }
  16. {$O+} { . . . . . . . . . . . . . . . . . . Allow this unit to be overlayed }
  17. {$Q-} { . . . . . . . . . . . . . .  Do not generate overflow-checking code }
  18. {$R-} { . . . . . . . . . . . . . . . . Do not generate range-checking code }
  19. {$S-} { . . . . . . . . . . . . . . . . Do not generate stack-checking code }
  20. {$X+} { . . . . . . . . . . . Extended syntax for pChars and function calls }
  21.  
  22. INTERFACE
  23.  
  24. CONST
  25.  
  26.   ErrorFormat : STRING = 'Runtime error *N: *D';
  27.  
  28.   { *D  Description  }
  29.   { *N  Error code   }
  30.  
  31. IMPLEMENTATION
  32.  
  33. { The source code is available upon registration. }
  34.  
  35. END.
  36.